disallow_intree_builds()
+# API version - be sure to update utf8proc.h and Makefile, too!
project (utf8proc VERSION 2.10.0 LANGUAGES C)
# This is the ABI version number, which may differ from the
include/utf8proc.h
lib/
lib/libutf8proc.a
-lib/libutf8proc.so -> libutf8proc.so.3.0.0
-lib/libutf8proc.so.2 -> libutf8proc.so.3.0.0
-lib/libutf8proc.so.3.0.0
+lib/libutf8proc.so -> libutf8proc.so.3.1.0
+lib/libutf8proc.so.2 -> libutf8proc.so.3.1.0
+lib/libutf8proc.so.3.1.0
lib/pkgconfig/
lib/pkgconfig/libutf8proc.pc
# The API version number is defined in utf8proc.h.
# Be sure to also update these ABI versions in MANIFEST and CMakeLists.txt!
MAJOR=3
-MINOR=0
+MINOR=1
PATCH=0
# api version (also in utf8proc.h and CMakeLists.txt)
-VERSION=2.9.0
+VERSION=2.10.0
OS := $(shell uname)
ifeq ($(OS),Darwin) # MacOS X
# utf8proc release history #
+## Version 2.10.0 ##
+
+2024-12-31
+
+ - Unicode 16 support ([#277]).
+ - New `utf8proc_charwidth_ambiguous` function to return whether a character has
+ East Asian width class A (Ambiguous) ([#270]).
+
+
## Version 2.9.0 ##
2023-10-20
[#233]: https://github.com/JuliaStrings/utf8proc/issues/233
[#247]: https://github.com/JuliaStrings/utf8proc/issues/247
[#253]: https://github.com/JuliaStrings/utf8proc/issues/253
+[#270]: https://github.com/JuliaStrings/utf8proc/issues/270
+[#277]: https://github.com/JuliaStrings/utf8proc/issues/277
/** The MAJOR version number (increased when backwards API compatibility is broken). */
#define UTF8PROC_VERSION_MAJOR 2
/** The MINOR version number (increased when new functionality is added in a backwards-compatible manner). */
-#define UTF8PROC_VERSION_MINOR 9
+#define UTF8PROC_VERSION_MINOR 10
/** The PATCH version (increased for fixes that do not change the API). */
#define UTF8PROC_VERSION_PATCH 0
/** @} */